From 5070b178e9b50e851bdbc893b1dfb05634ae7b68 Mon Sep 17 00:00:00 2001 From: Tim Janik Date: Sun, 20 Dec 1998 01:24:40 +0000 Subject: [PATCH] eek, fixed an embarrasing bug that caused this function to always return Sat Dec 19 22:49:40 1998 Tim Janik * gtk/gtktypeutils.c (gtk_type_query): eek, fixed an embarrasing bug that caused this function to always return NULL (noticed by marius vollmer). --- ChangeLog | 6 ++++++ ChangeLog.pre-2-0 | 6 ++++++ ChangeLog.pre-2-10 | 6 ++++++ ChangeLog.pre-2-2 | 6 ++++++ ChangeLog.pre-2-4 | 6 ++++++ ChangeLog.pre-2-6 | 6 ++++++ ChangeLog.pre-2-8 | 6 ++++++ gtk/gtktypeutils.c | 2 ++ 8 files changed, 44 insertions(+) diff --git a/ChangeLog b/ChangeLog index 22531467e5..a91a038f33 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Sat Dec 19 22:49:40 1998 Tim Janik + + * gtk/gtktypeutils.c (gtk_type_query): eek, fixed an embarrasing bug + that caused this function to always return NULL (noticed by marius + vollmer). + Sat Dec 19 17:28:30 1998 Owen Taylor * configure.in: Don't add the gthread libs to diff --git a/ChangeLog.pre-2-0 b/ChangeLog.pre-2-0 index 22531467e5..a91a038f33 100644 --- a/ChangeLog.pre-2-0 +++ b/ChangeLog.pre-2-0 @@ -1,3 +1,9 @@ +Sat Dec 19 22:49:40 1998 Tim Janik + + * gtk/gtktypeutils.c (gtk_type_query): eek, fixed an embarrasing bug + that caused this function to always return NULL (noticed by marius + vollmer). + Sat Dec 19 17:28:30 1998 Owen Taylor * configure.in: Don't add the gthread libs to diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index 22531467e5..a91a038f33 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,9 @@ +Sat Dec 19 22:49:40 1998 Tim Janik + + * gtk/gtktypeutils.c (gtk_type_query): eek, fixed an embarrasing bug + that caused this function to always return NULL (noticed by marius + vollmer). + Sat Dec 19 17:28:30 1998 Owen Taylor * configure.in: Don't add the gthread libs to diff --git a/ChangeLog.pre-2-2 b/ChangeLog.pre-2-2 index 22531467e5..a91a038f33 100644 --- a/ChangeLog.pre-2-2 +++ b/ChangeLog.pre-2-2 @@ -1,3 +1,9 @@ +Sat Dec 19 22:49:40 1998 Tim Janik + + * gtk/gtktypeutils.c (gtk_type_query): eek, fixed an embarrasing bug + that caused this function to always return NULL (noticed by marius + vollmer). + Sat Dec 19 17:28:30 1998 Owen Taylor * configure.in: Don't add the gthread libs to diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index 22531467e5..a91a038f33 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,3 +1,9 @@ +Sat Dec 19 22:49:40 1998 Tim Janik + + * gtk/gtktypeutils.c (gtk_type_query): eek, fixed an embarrasing bug + that caused this function to always return NULL (noticed by marius + vollmer). + Sat Dec 19 17:28:30 1998 Owen Taylor * configure.in: Don't add the gthread libs to diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index 22531467e5..a91a038f33 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,9 @@ +Sat Dec 19 22:49:40 1998 Tim Janik + + * gtk/gtktypeutils.c (gtk_type_query): eek, fixed an embarrasing bug + that caused this function to always return NULL (noticed by marius + vollmer). + Sat Dec 19 17:28:30 1998 Owen Taylor * configure.in: Don't add the gthread libs to diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index 22531467e5..a91a038f33 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,9 @@ +Sat Dec 19 22:49:40 1998 Tim Janik + + * gtk/gtktypeutils.c (gtk_type_query): eek, fixed an embarrasing bug + that caused this function to always return NULL (noticed by marius + vollmer). + Sat Dec 19 17:28:30 1998 Owen Taylor * configure.in: Don't add the gthread libs to diff --git a/gtk/gtktypeutils.c b/gtk/gtktypeutils.c index 6ccc90eaa1..1d3fed1c1a 100644 --- a/gtk/gtktypeutils.c +++ b/gtk/gtktypeutils.c @@ -894,6 +894,8 @@ gtk_type_query (GtkType type) query->type_name = node->type_info.type_name; query->object_size = node->type_info.object_size; query->class_size = node->type_info.class_size; + + return query; } return NULL; -- 2.30.2